synchronization$81104$ - traduzione in greco
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

synchronization$81104$ - traduzione in greco

TERM IN COMPUTER SCIENCE
Tcp global synchronization; Global synchronization

synchronization      
n. συγχρονισμός, συγχρόνιση
brain wave         
  • Tonic]] firing pattern of single neuron showing rhythmic spiking activity
  • 200px
  • Simulation of [[Kuramoto model]] showing neural synchronization and oscillations in the mean field
  •  doi = 10.1007/s004220000160 }}</ref> As the gain A is increased the network starts to oscillate at 3Hz.
  • Hindmarsh–Rose neuron]] showing typical [[bursting]] behavior: a fast rhythm generated by individual spikes and a slower rhythm generated by the bursts.
  • Generalized 3 Hz spike and wave discharges reflecting [[seizure]] activity
  • Handwriting of a person affected by [[Parkinson's disease]] showing rhythmic tremor activity in the strokes
1953 NOVEL BY POUL ANDERSON
Brainwave; Brainwaves; Brain waves; Induced activity; Ongoing brain activity; Neuronal oscillations; Neurodynamics; Neural Field Theory; Neural synchronization; Spontaneous activity; Neuronal synchronization; Neural oscillations; Cortical oscillation; Cortical oscillations; Brain wave; Brain rhythm
έμπνευση

Definizione

synchronous
['s??kr?n?s]
¦ adjective
1. existing or occurring at the same time.
2. of or denoting a satellite which revolves in its orbit in exactly the same time as the primary body rotates on its axis.
Derivatives
synchronously adverb
Origin
C17: from late L. synchronus (from Gk sunkhronos, from sun- 'together' + khronos 'time') + -ous.

Wikipedia

TCP global synchronization

TCP global synchronization in computer networks can happen to TCP/IP flows during periods of congestion because each sender will reduce their transmission rate at the same time when packet loss occurs.

Routers on the Internet normally have packet queues, to allow them to hold packets when the network is busy, rather than discarding them.

Because routers have limited resources, the size of these queues is also limited. The simplest technique to limit queue size is known as tail drop. The queue is allowed to fill to its maximum size, and then any new packets are simply discarded until there is space in the queue again.

This causes problems when used on TCP/IP routers handling multiple TCP streams, especially when bursty traffic is present. While the network is stable, the queue is constantly full, and there are no problems except that the full queue results in high latency. However, the introduction of a sudden burst of traffic may cause large numbers of established, steady streams to lose packets simultaneously.

TCP has automatic recovery from dropped packets, which it interprets as congestion on the network (which is usually correct). The sender reduces its sending rate for a certain amount of time and then tries to find out if the network is no longer congested by increasing the rate again subject to a ramp-up. This is known as the slow start algorithm.

Almost all the senders will use the same time delay before increasing their rates. When these delays expire at the same time, all the senders will send additional packets and the router queue will again overflow, more packets will be dropped, the senders will all back off for a fixed delay... ad infinitum; compare with the thundering herd problem.

This pattern of each sender decreasing and increasing transmission rates at the same time as other senders is referred to as "global synchronization" and leads to inefficient use of bandwidth, due to the large numbers of dropped packets, which must be retransmitted, and because the senders have a reduced sending rate, compared to the stable state, while they are backed-off, following each loss.

This problem has been the subject of much research. The consensus appears to be that the tail drop algorithm is the leading cause of the problem, and other queue size management algorithms such as Random Early Detection (RED) and Weighted RED will reduce the likelihood of global synchronization, as well as keeping queue sizes down in the face of heavy load and bursty traffic.